home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Chess / Source / Square.h < prev    next >
C/C++ Source or Header  |  1994-04-01  |  356b  |  17 lines

  1. @interface Square : Cell
  2. {
  3.   float background;
  4.   char *icon;
  5.   int type;
  6. }
  7.  
  8. - setBackground: (float) b;
  9. - highlight: (const NXRect *)f inView: v;
  10. - drawSelf:(const NXRect *)cellFrame inView:v;
  11. - drawInside:(const NXRect *)cellFrame inView:v;
  12. - drawBackground:(const NXRect *)f inView: v;
  13. - setIcon: (char const *)i;
  14. - (char const *)icon;
  15. - (int)type;
  16. @end
  17.